.loader {
    background: #2c2d44;
    background-image: -moz-linear-gradient(45deg, #3f3251 2%, #002025 100%);
    background-image: -webkit-linear-gradient(45deg, #3f3251 2%, #002025 100%);
    background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 9999;
    transition: opacity 0.5s ease-in-out;
}
  
.loader:before {
  content: "";
  background-image: url("https://i.ibb.co/tdGLDQX/Random-Joystick.png");
  background-size: cover;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-52%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: fade 1.2s linear infinite;
  z-index: 9999;
}
  
.hide-loader {
    opacity: 0;
    pointer-events: none;
}

.loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-left: -60px;
  margin-top: -60px;
}

.loader-line-mask {
  width: 120px;
  height: 120px;
  animation: spinning82341 1.7s linear infinite;
  text-align: center;
  border-radius: 100px;
  filter: blur(1px);
  box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
}

.loader-line-mask .loader-line {
  background-color: rgb(0, 0, 0, 1);
  width: 120px;
  height: 120px;
  border-radius: 100px;
  filter: blur(25px);
}

@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
}